home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscSwapKitPalette / Makefile.preamble < prev    next >
Encoding:
Makefile  |  1995-02-08  |  3.9 KB  |  101 lines

  1. ###############################################################################
  2. #  NeXT Makefile.preamble Template
  3. #  Copyright 1993, NeXT Computer, Inc.
  4. #
  5. #  This Makefile is used for configuring the standard app makefiles associated
  6. #  with ProjectBuilder.  
  7. #  
  8. #  Use this template to set attributes for a project, sub-project, bundle, or
  9. #  palette.  Each node in the project's tree of sub-projects and bundles 
  10. #  should have it's own Makefile.preamble and Makefile.postamble.
  11. #
  12. ###############################################################################
  13. ## Configure the flags passed to $(CC) here.  These flags will also be 
  14. ## inherited by all nested sub-projects and bundles.  Put your -I, -D, -U, and
  15. ## -L flags here.  To change the default flags that get passed to ${CC} 
  16. ## (e.g. change -O to -O2), see Makefile.postamble.
  17.  
  18. PALETTE_LIBRARY = libMiscSwapKit.a
  19.  
  20. # Flags passed to compiler (in addition to -g, -O, etc)
  21. OTHER_CFLAGS = -IMiscSwapKit.subproj
  22. # Flags passed to ld (in addition to -ObjC, etc.)
  23. OTHER_LDFLAGS =    
  24.  
  25. ## Configure what is linked in at each level here.  Libraries are only used in
  26. ## the final 'app' linking step.  Final 'app' linking is only done via the
  27. ## 'app', 'debug', and 'profile' targets when they are invoked for
  28. ## the top-level app.
  29.  
  30. # Additional relocatables to be linked in at this level
  31. OTHER_OFILES = 
  32. # Additional libs to link apps against ('app' target)
  33. OTHER_LIBS = 
  34. # Additional libs to link apps against ('debug' target)
  35. OTHER_DEBUG_LIBS = 
  36. # Additional libs to link apps against ('profile' target)
  37. OTHER_PROF_LIBS = 
  38.  
  39. # More 'app' libraries when $(JAPANESE) = "YES"
  40. OTHER_JAPANESE_LIBS = 
  41. # More 'debug' libraries when $(JAPANESE) = "YES"
  42. OTHER_JAPANESE_DEBUG_LIBS = 
  43. # More 'profile' libs when $(JAPANESE) = "YES"
  44. OTHER_JAPANESE_PROF_LIBS = 
  45.  
  46. ## Configure how things get built here.  Additional dependencies, sourcefiles, 
  47. ## derived files, and build order should be specified here.
  48.  
  49. # Other dependencies of this project
  50. OTHER_PRODUCT_DEPENDS =    $(PALETTE_LIBRARY)
  51. # Built *before* building subprojects/bundles
  52. OTHER_INITIAL_TARGETS = 
  53. # Other source files maintained by .pre/postamble
  54. OTHER_SOURCEFILES = 
  55. # Additional files to be removed by `make clean' 
  56. OTHER_GARBAGE = $(PALETTE_LIBRARY) MiscSwapKit.subproj/MiscSwapKitVersion.c
  57. # Precompiled headers to be built before any compilation occurs (e.g., draw.p)
  58. PRECOMPS = 
  59.  
  60. # Targets to be built before subprojects & bundles
  61. OTHER_INITIAL_TARGETS =    
  62.  
  63. # A virtual root directory (other than /) to be prepended to the $(INSTALLDIR) 
  64. # passed from ProjectBuilder.
  65. DSTROOT = 
  66.  
  67. # This is so we default to local rather than a Next* path.
  68. INSTALLDIR = $(DSTROOT)/LocalDeveloper/Palettes
  69.  
  70.  
  71. ## Add more obscure source files here to cause them to be automatically 
  72. ## processed by the appropriate tool.  Note that these files should also be
  73. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  74. ## result from these files should also be added to OTHER_OFILES above so they
  75. ## will be linked in.
  76.  
  77. # .msg files that should have msgwrap run on them
  78. MSGFILES = 
  79. # .defs files that should have mig run on them
  80. DEFSFILES = 
  81. # .mig files (no .defs files) that should have mig run on them
  82. MIGFILES = 
  83.  
  84. ## Add additional Help directories here (add them to the project as "Other 
  85. ## Resources" in Project Builder) so that they will be compressed into .store
  86. ## files and copied into the app wrapper.  If the help directories themselves
  87. ## need to also be in the app wrapper, then a cp command will need to be added
  88. ## in an after_install target.
  89. OTHER_HELP_DIRS = 
  90.  
  91. LIBOFILES    = MiscSwapKit.subproj/MiscSwapKitVersion.o \
  92.         MiscSwapKit.subproj/MiscSwapContentsController.o \
  93.         MiscSwapKit.subproj/MiscSwapViewByMatrix.o \
  94.         MiscSwapKit.subproj/MiscSwapViewByPopUp.o \
  95.         MiscSwapKit.subproj/MiscSwapView.o \
  96.         MiscSwapKit.subproj/MiscSwapView_ByObject.o
  97.  
  98. # Don't add more rules here unless you want the first one to be the default
  99. # target for make!  Put all your targets in Makefile.postamble.
  100.  
  101.